1eb7227acc9140cb6efb0e4a92cca44728b4abb9,mycollab-web/src/main/java/com/mycollab/module/project/view/kanban/AddNewColumnWindow.java,AddNewColumnWindow,AddNewColumnWindow,#IKanbanView#String#String#,50
Before Change
public AddNewColumnWindow(final IKanbanView kanbanView, final String type, final String fieldGroup) {
super(AppContext.getMessage(TaskI18nEnum.ACTION_NEW_COLUMN));
this.setWidth("800px");
this.setModal(true);
this.setResizable(false);
this.center();
MVerticalLayout layout = new MVerticalLayout().withMargin(new MarginInfo(false, false, true, false));
GridFormLayoutHelper gridFormLayoutHelper = GridFormLayoutHelper.defaultFormLayoutHelper(1, 4);
After Change
public AddNewColumnWindow(final IKanbanView kanbanView, final String type, final String fieldGroup) {
super(AppContext.getMessage(TaskI18nEnum.ACTION_NEW_COLUMN));
this.withModal(true).withResizable(false).withWidth("800px").withCenter();
MVerticalLayout layout = new MVerticalLayout().withMargin(new MarginInfo(false, false, true, false));
GridFormLayoutHelper gridFormLayoutHelper = GridFormLayoutHelper.defaultFormLayoutHelper(1, 4);
this.setContent(layout);